home *** CD-ROM | disk | FTP | other *** search
/ Winzipper / Winzipper_ISO.iso / programming / oracle7 7.2 / TOOLS / PLUS32 / PLUS32.INS < prev    next >
Encoding:
Text File  |  1995-10-16  |  2.1 KB  |  75 lines

  1. /* Copyright (c) Oracle Corporation 1992.  All Rights Reserved */
  2. /*****************************************************************************
  3.  
  4.   NAME
  5.     plus32.ins - V3.0.20.2.0 installation script for SQL*Plus for Windows 3.2
  6.  
  7.   DESCRIPTION
  8.     This script installs SQL*Plus for Windows 3.2
  9.  
  10.   OWNER
  11.     Edan Kabatchnik
  12.  
  13.   MODIFIED    DD-MMM-YY  Reason
  14.     Aedsinge  06/06/95     Converted to Sql*Plus 3.2.2 script for NT/95
  15.     AEdsinge  27-APR-95  Modified for shared Oracle, Windows Sql*Plus 3.1.3.7.2
  16.     LMurphy   08-SEP-94  Modified for Windows SQL*Plus 3.1.3.5.x
  17.     LMurphy   23-MAY-94  Modified for Windows SQL*Plus 3.1.2.2.6
  18.     shall     04-FEB-93  Created from RSF 7.0 script.
  19. *****************************************************************************/
  20. {
  21.     if (doit)
  22.     {
  23.         ins_ratchet = "3.2.2.0.1";
  24.         execute("%installer_home%\win95.ins");
  25.         permit_retry_operations = TRUE;
  26.  
  27.         ui_action(instantiate(prod_label));
  28.                 /*************************************************************/
  29.                 /* Shared Oracle code */
  30.         modify("SQLPATH", sqlpath, "$oracle", (product_filename(current_product)));
  31.  
  32.         modify("PLUS32", plus32, "$oracle", (product_filename(current_product)));
  33.  
  34.         modify("EXECUTE_SQL", "PLUS32", "$oracle", (product_filename(current_product)));
  35.                         /* end Shared Oracle code */
  36.                 /*************************************************************/
  37.  
  38.         ui_action(instantiate(installing_scripts));
  39.             copy(deinstl);
  40.  
  41.         
  42.  
  43.         ui_action(instantiate(installing_msbs));
  44.             copy(msg, nls_abbreviation);
  45.  
  46.         ui_action(instantiate(installing_sql));
  47.             copy(sql);
  48.         
  49.         ui_action(instantiate(installing_help));
  50.             copy(help);
  51.             copy(prefs);
  52.  
  53.         ui_action(instantiate(installing_exec));
  54.             copy(exe);        
  55.  
  56.  
  57.         permit_retry_operations = FALSE;
  58.  
  59.         install(w95rsf72);
  60.  
  61.         ui_product(product_label);
  62.  
  63.         permit_retry_operations = TRUE;
  64.  
  65.         ui_action(instantiate(registering));
  66.  
  67.         register(current_product);
  68.         if (member(selected_products, current_product))
  69.             reference(current_product);
  70.         reference(w95rsf72, current_product);
  71.  
  72.         permit_retry_operations = FALSE;
  73.     }
  74. }
  75.